home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
lang
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
gc
/
PLk
/
bench.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-12-22
|
374 b
|
37 lines
class BENCH
creation
make
feature
peach: PEACH;
apple: APPLE;
make is
local
i, limit: INTEGER
do
limit := 70_000_000
from
i := 0
until
i > limit
loop
!!apple.make(i)
i := i + 1
end
apple := Void
from
i := 0
until
i > limit
loop
!!peach.make(i)
i := i + 1
end
end
end